/* Order Modal Overlay */
.order-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20000;
}

/* Modal Content Box */
.order-modal-content {
    background: transparent;
    width: 900px;
    height: 570px;
    display: flex;
    gap: 0;
}

/* Sidebar Styling */
.order-modal-content .account-sidebar {
    width: 200px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid #e8e8e8;
    border-radius: 12px 0 12px 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Right Column */
.order-modal-content .account-right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header Card */
.order-modal-content .account-header-card {
    background: linear-gradient(90deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid #e8e8e8;
    border-left: none;
    border-radius: 0 12px 12px 0;
    padding: 16px 40px 16px 60px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    box-shadow: 8px 4px 24px rgba(0, 0, 0, 0.06);
}

/* Main Panel - Scrollable */
.order-list-panel {
    flex: 1;
    padding: 32px 40px;
    margin-left: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    overflow-y: auto;
    display: block;
}

/* Custom scrollbar */
.order-list-panel::-webkit-scrollbar {
    width: 6px;
}

.order-list-panel::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.order-list-panel::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d0d0d0 0%, #bbb 100%);
    border-radius: 10px;
}

.order-list-panel::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #bbb 0%, #999 100%);
}

/* Section Title */
.order-section-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #1a1a1a;
    display: inline-block;
    letter-spacing: 0.5px;
}

.order-item {
    padding-bottom: 10px;
}

.form-group-flex {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-group-flex label {
    width: 80px;
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.info-input-order {
    flex: 0 0 320px;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    outline: none;
    padding: 8px 0;
    font-size: 14px;
    color: #333;
    background: transparent;
    transition: border-color 0.3s ease;
}

.info-input-order:focus {
    border-bottom-color: #333;
}

/* Order Status Badge */
.order-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.order-status.pending {
    background: linear-gradient(90deg, #fff8e6 0%, #fff3d6 100%);
    color: #b8860b;
}

.order-status.completed {
    background: linear-gradient(90deg, #e8f5e9 0%, #d4edda 100%);
    color: #2e7d32;
}

.order-status.processing {
    background: linear-gradient(90deg, #e3f2fd 0%, #d6eaf8 100%);
    color: #1565c0;
}

.order-divider {
    height: 1px;
    background: linear-gradient(90deg, #e0e0e0 0%, #f5f5f5 50%, #e0e0e0 100%);
    margin: 32px 0;
    width: 100%;
}

/* Empty State */
.empty-orders {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    color: #999;
}

.empty-orders-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.4;
}

.empty-orders-text {
    font-size: 14px;
    color: #999;
}
